home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Pascal Super Library
/
Pascal Super Library (CW International)(1997).bin
/
LIBRARY
/
CMPLTPAS
/
ROOTER.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1986-01-18
|
256b
|
14 lines
PROGRAM Rooter;
VAR
R,S : Real;
BEGIN
Writeln('>>Square root calculator<<');
Writeln;
Write('>>Enter the number: ');
Readln(R);
S := Sqrt(R);
Writeln(' The square root of ',R:7:7,' is ',S:7:7,'.')
END.